home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 114 / CDRom114.iso / internet / temafire / Red Cats (green flavor).jar / browser / pref / pref.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2004-08-27  |  4.3 KB  |  153 lines

  1. /*
  2. # -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  3. # Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4. #
  5. # The contents of this file are subject to the Mozilla Public License Version
  6. # 1.1 (the "License"); you may not use this file except in compliance with
  7. # the License. You may obtain a copy of the License at
  8. # http://www.mozilla.org/MPL/
  9. #
  10. # Software distributed under the License is distributed on an "AS IS" basis,
  11. # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12. # for the specific language governing rights and limitations under the
  13. # License.
  14. #
  15. # The Original Code is Mozilla.org Code.
  16. #
  17. # The Initial Developer of the Original Code is
  18. # Doron Rosenberg.
  19. # Portions created by the Initial Developer are Copyright (C) 2001
  20. # the Initial Developer. All Rights Reserved.
  21. #
  22. # Contributor(s):
  23. #   Ben Goodger <ben@netscape.com> (Original Author)
  24. #
  25. # Alternatively, the contents of this file may be used under the terms of
  26. # either the GNU General Public License Version 2 or later (the "GPL"), or
  27. # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28. # in which case the provisions of the GPL or the LGPL are applicable instead
  29. # of those above. If you wish to allow use of your version of this file only
  30. # under the terms of either the GPL or the LGPL, and not to allow others to
  31. # use your version of this file under the terms of the MPL, indicate your
  32. # decision by deleting the provisions above and replace them with the notice
  33. # and other provisions required by the GPL or the LGPL. If you do not delete
  34. # the provisions above, a recipient may use your version of this file under
  35. # the terms of any one of the MPL, the GPL or the LGPL.
  36. #
  37. # ***** END LICENSE BLOCK *****
  38. */
  39. #header {
  40.     background: #C0D1C1;
  41.     color: #6E85A8;
  42. }
  43.  
  44. .buttonBox {
  45.     margin: 0px 7px !important;
  46. }
  47.  
  48. .buttonBoxButton {
  49.     -moz-appearance: none !important;
  50.     border: 1px solid transparent;
  51.     background: none;
  52.     background-color: transparent;
  53. }
  54.  
  55. .buttonBoxButton > .button-box {
  56.     border: none !important;
  57.     background: none;
  58. }
  59.  
  60. .buttonBoxButton .button-text {
  61.     background: none;
  62.     padding-top: 2px;
  63. }
  64.  
  65. .buttonBoxButton > .button-box > .button-icon {
  66.     width: 32px;
  67.     height: 32px;
  68. }
  69.  
  70. .buttonBoxButton:hover, .buttonBoxButton:focus {
  71.     background-image: url("chrome://mozapps/skin/shared/itemSelected.png");
  72.     background-position: top;
  73.     border: 1px dotted #A6B7A9;    
  74. }
  75.  
  76. .buttonBoxButton[checked="true"] {
  77.     background-image: url("chrome://mozapps/skin/shared/itemSelected2.png");
  78.     background-position: top;
  79.     border: 1px dotted #7F9DB9;
  80. }
  81.  
  82. #catGeneralButton {
  83.     list-style-image: url("chrome://browser/skin/pref/general.png");
  84. }
  85.  
  86. #catPrivacyButton {
  87.     list-style-image: url("chrome://browser/skin/pref/privacy.png");
  88. }
  89.  
  90. #catFeaturesbutton {
  91.     list-style-image: url("chrome://browser/skin/pref/web_features.png");
  92. }
  93.  
  94. #catDownloadsButton {
  95.     list-style-image: url("chrome://mozapps/skin/xpinstall/xpinstallIcon.png");
  96. }
  97.  
  98. #catThemesButton {
  99.     list-style-image: url("chrome://browser/skin/pref/themes.png");
  100. }
  101.  
  102. #catExtButton {
  103.     list-style-image: url("chrome://browser/skin/pref/extensions.png");
  104. }
  105.  
  106. #catAdvancedButton {
  107.     list-style-image: url("chrome://browser/skin/pref/advanced.png");
  108. }
  109.  
  110. expander {
  111.     margin: 1px 4px 1px 4px;
  112.     border: 1px solid transparent;
  113. }
  114.  
  115. #privacyCategories > expander[open="true"] {
  116.     background-color: #B6C8B9;
  117.     border: 1px solid;
  118.     -moz-border-top-colors: #A6B6CE;
  119.     -moz-border-right-colors: #6E85A8;
  120.     -moz-border-bottom-colors: #6E85A8;
  121.     -moz-border-left-colors: #A6B6CE;
  122.     -moz-border-radius: 2px;
  123. }
  124.  
  125. .themesLink {
  126.     margin-left: 5px;
  127.     text-decoration: underline;
  128.     color: #6E85A8;
  129.     cursor: pointer;
  130. }
  131.  
  132.                                                                                
  133. .themesLink:active {
  134.     color: #9BB6DF;
  135. }
  136.  
  137. /* Extensions endabled or disabled status */
  138. #extList listitem {
  139.     background-image: url("chrome://browser/skin/pref/extension-enabled.png");
  140.     background-repeat: no-repeat;
  141.     background-position: 1px 2px;
  142.     padding-left: 15px;
  143. }
  144.  
  145. #extList listitem[disabledState="true"] {
  146.     background-image: url("chrome://browser/skin/pref/extension-disabled.png");
  147.     color: #A6B7A9;
  148.     background-repeat: no-repeat;
  149.     background-position: 1px 2px;
  150.     padding-left: 15px;
  151. }
  152.  
  153.